home *** CD-ROM | disk | FTP | other *** search
- Q32935 _fld1 Unresolved at Link Time
- C Compiler
- 5.10 | 5.10
- MS-DOS | OS/2
-
- Summary:
- Compiling and linking the following program with one of the
- floating-point options to generate calls (/FPa, /FPc or /FPc87)
- results in _fld1 being unresolved at link time.
- The following is a code example:
-
- main()
- { float j,k;
- k = j--;
- }
-
- Microsoft has confirmed this to be a problem in Version 5.10 of the
- C compiler. We are researching this problem and will post new
- information as it becomes available.
- You can work around this problem by not using the decrement
- operator (--) on the variable j. For example, you can rewrite the code
- as follows:
-
- main()
- { float j,k;
- k = j;
- j = j-1;
- }
-
-
-
- Keywords: buglist5.10 qfbv
- Updated 88/07/29 12:16
-